home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_01 / plauger / istrstrm.h < prev    next >
C/C++ Source or Header  |  1994-12-07  |  347b  |  14 lines

  1. class istrstream : public istream {
  2. public:
  3.        istrstream(const char* s);
  4.         istrstream(const char* s, int n);
  5.         istrstream(char* s);
  6.         istrstream(char* s, int n);
  7.         virtual ~istrstream();
  8.         strstreambuf* rdbuf() const;
  9.         char *str();
  10. private:
  11. //      strstreambuf sb;       exposition only
  12. };
  13.  
  14.